html及css可以達成響應式網頁的功能喔!
html
<section class="content">
<h2>歡迎來到我們的網站</h2>
<p>這是一個簡單的響應式網頁範例,能夠根據不同的設備自動調整佈局。</p>
</section>
<footer>
<p>© 2024 響應式網頁範例</p>
</footer>
css
/* 基本樣式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
.content {
padding: 20px;
text-align: center;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
/* 響應式設計 */
@media (max-width: 768px) {
nav ul li {
display: block;
margin: 10px 0;
}
header, .content, footer {
padding: 15px;
}
}
@media (max-width: 480px) {
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
}
p {
font-size: 16px;
}
}
但這個有點簡陋~明天呈現完整的網站!